home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / prolog / brklyprl.lha / Emulator / compiler < prev    next >
Encoding:
Text File  |  1989-04-14  |  241 b   |  10 lines

  1. #! /bin/csh -f
  2. # put your Prolog compiler there:
  3. set comp = ../Comp/comp
  4. if (! -e $comp) then
  5.     echo "Prolog compiler not found" |& cat
  6.     echo "build the compiler and modify shell script Emulator/compiler"
  7.     exit -1
  8. endif
  9. $comp < $1.pl >! $1.w
  10.